home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / ff2.zip / README.TXT < prev   
Text File  |  1996-05-16  |  19KB  |  439 lines

  1. █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
  2. █ Hello,                                                                                  █
  3. █ Now it's really easy to register ...                                                    █
  4. █ And it's only 20 $ or 20 Francs or 20 DM even if that's a bad business for a swiss :-)  █
  5. █                                                                                         █
  6. █                                                                                         █
  7. █ CompuServe Shareware Registration                                                       █
  8. █ +++++++++++++++++++++++++++++++++                                                       █
  9. █ If you are a CompuServe member, GOSWREG and select ID 10138. This registers             █
  10. █ you for FF2 V7.4.                                                                       █
  11. █                                                                                         █
  12. █ Send me the money                                                                       █
  13. █ ++++++++++++++++                                                                        █
  14. █ Send me an email to 100550,1100@compuserve.com. You get my postal adress then.          █
  15. █                                                                                         █
  16. █ Transfer the money to my bank account                                                   █
  17. █ +++++++++++++++++++++++++++++++++++++                                                   █
  18. █                                                                                         █
  19. █ Zuercher Kantonalbank 8952 Schlieren (Switzerland)                                      █
  20. █ Account 1148-998.792, Markus Pfister                                                    █
  21. ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  22.  
  23. All right, so far for the business.
  24.  
  25. FF2 V7.4b release liner notes
  26. =============================
  27.  
  28. Grep repetition expression enabled
  29. ----------------------------------
  30. Again an effort to increase FF2's regular expression search capabilities. Now you
  31. can enter grep repetitions, e.g. {1,5}a means "there must be at least one and at most 5 "a"
  32. in the searched text. Of course you can use the repetitions together with brackets {1,3}[a-z]
  33. would say "there must be at least on times and at most 3 thimes a character between "a" and "z"
  34. in the searched text. Something like ^hello*{1,3}[d-f]$ works to. It means:
  35. - String must start at a line (^)
  36. - must begin with "hello" followed by an arbitrary text
  37. - must be followed by at least 1 and at most 3 characters between "d" and "f"
  38. - then there must be an end of line ($)
  39.  
  40. So this would match: hello this is a new FF2 ee
  41.         and:         hello this is a new FF2 def
  42.         but not:     hello this is a new FF2 xx
  43.  
  44.  
  45. I suggest that you open the "Regular expression" dialog under the "Config" menu and push
  46. the help button. There you get a lot of examples, how to use these really powerful features.
  47.  
  48. Here the repetition samples. Note that you can write {1,3}a or {1-3}a
  49.  
  50. Case sensitive search is assumed!
  51. {1,2}a and {1-2}a have the same meaning.
  52. ┌────────────────┬────────────────┬─────────┐
  53. │Pattern         │ Text           │  match? │
  54. ├────────────────┼────────────────┼─────────┤
  55. │he{1,2}lo       │ hello          │  yes    │
  56. │he{2}lo         │ hello          │  yes    │
  57. │he{1}lo         │ hello          │  no     │
  58. │he{1,5}lo       │ hello          │  yes    │
  59. │he{3,5}lo       │ hello          │  no     │
  60. │1{1-5}01        │ 101            │  yes    │
  61. │1{1-5}01        │ 1001           │  yes    │
  62. │1{1-5}01        │ 10001          │  yes    │
  63. │1{1-5}01        │ 100001         │  yes    │
  64. │1{1-5}01        │ 1000001        │  yes    │
  65. │1{1-5}01        │ 10000001       │  no     │
  66. │he{1,2}[a-z]o   │ hello          │  yes    │
  67. │he{1,2}[A-Z]o   │ hello          │  no     │
  68. │t{3}*s          │ this this this │  yes    │
  69. └────────────────┴────────────────┴─────────┘
  70.  
  71. Case sensitive search is assumed!
  72. {1,2}a and {1-2}a have the same meaning.
  73. ┌────────────────┬────────────────┬─────────┐
  74. │Pattern         │ Text           │  match? │
  75. ├────────────────┼────────────────┼─────────┤
  76. │{1,2}^ hello    │ a ^ hello      │  yes    │
  77. │{1,2}^ hello    │ a ^^ hello     │  yes    │
  78. │^{1,2}^ hello   │ a ^ hello      │  no     │
  79. │^{1,2}^ hello   │ ^hello         │  yes    │
  80. │^{1,2}^ hello   │ ^^hello        │  yes    │
  81. │hello{1,2}$     │ hello$ a       │  yes    │
  82. │hello{1,2}$     │ hello$$ a      │  yes    │
  83. │hello{1,2}$$    │ hello$ a       │  no     │
  84. │hello{1,2}$$    │ hello$         │  yes    │
  85. └────────────────┴────────────────┴─────────┘
  86.  
  87. Duplicate files
  88. ---------------
  89. Now the message indicating
  90. Bugs fixed
  91. ----------
  92.  
  93. In environment searches for LIBPATH the first path in your config.sys LIBPATH statement
  94. was incorrectly parsed. This is fixed now.
  95.  
  96. FF2 V7.4a release liner notes
  97. =============================
  98.  
  99. Showing duplicate files located on a path/libpath; exlude them from batch file generation
  100. -----------------------------------------------------------------------------------------
  101. Finding duplicate files is one thing, removing them the other. What I missed was the ability
  102. to find out whether I need a file or not. A good clue for that kind of check would be the
  103. information, whether a file is included in a SET path specified in the config.sys or in the
  104. libpath. FF2 V7.4a offers you now that option. From a listbox you select the pathes you want
  105. to be informed about and in the search results output listbox you will find either a green or
  106. red text saying that the file is ready to be thrown away or should be kept because of it's
  107. inclusion in a path.
  108.  
  109. Preserving files located on a path in batch commands
  110. ----------------------------------------------------
  111. A new option in the batch generation dialog preserves the "red" files (the ones located
  112. in a search or libpath that you choose in the duplicate file dialog) from the generation
  113. of batch commands. This means that these files will be commented out. Another option
  114. allows you to keep one instance of duplicate files. Again, this instance will be commented
  115. out and preserved from batch command generation.
  116.  
  117. Writing search results to a file (Request from user Ray Faulkner)
  118. -----------------------------------------------------------------
  119. Now you can write the search results to a file. So far this was only
  120. possible when you generated batch commands. With the new write option in
  121. the batch menu you can write the search results unaltered to a file.
  122.  
  123.  
  124. FF2 V7.4 release liner notes
  125. ============================                           
  126.  
  127. Finding duplicate files
  128. -----------------------
  129. Ever wondered how many duplicate files you have on ALL your hard drives? FF2 V7.4 helps you
  130. cleaning up. The new feature allows you to search for duplicate files in three ways:
  131.  
  132. 1. Find files having the same name
  133. 2. Find files having the same name and size
  134. 3. Find files having the same contents (FF2 V7.4 compares them)
  135.  
  136. You find this utility in the extended search menu. Click on "duplicate files" and fill in
  137. the appearing dialog. Note that you can't do text search / replaces while search for duplicate
  138. files is activated. I hope this feature helps further to give FF2 V7.4 an outstanding place among
  139. the OS/2 file search utilities.
  140.  
  141. File names containing blanks (Request from User Mike Coane)
  142.  
  143. Now you can edit a file with names that conatain blanks.
  144.  
  145. Displaying a message when nothing has been found
  146. ------------------------------------------------
  147.  
  148. Now FF2 displays a message when no files have been found. I didn't want you to have to answer
  149. a message box, so the message appears in the search results listbox.
  150.  
  151. FF2 V7.3d release liner notes
  152. =============================
  153.  
  154. Passing environment to an executed OS/2 shell programm
  155. ------------------------------------------------------
  156.  
  157. The passing of a user selected environment works now. If you add %PATH%=c:\mypath this path
  158. will